home *** CD-ROM | disk | FTP | other *** search
- ::
- :: Part of JDEX - Java Development Environment using Explorer
- ::
- :: Copyright (c) 1998, by J. Brian Coyle
- :: mailto:brianc@magicnet.net
- :: http://www.magicnet.net/~brianc
- ::
- :: Refer to JDEX\copyright.txt for additional information.
- ::
- ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
- @echo off
- :: ---
- :: --- SETJDE 03/20/98
- :: --- sets the Java Development Environment
- :: ---
- :: --- Edit the value of JDK to set the path to the current release
- :: --- Edit the values of
- :: --- JDEXPATH
- :: --- PATH
- :: --- CLASSPATH
- :: --- as necessary to set the necessary paths
- :: ---
- if NOT "%JDK%"=="" goto end
- set JDK=D:\jdk\1.1.5
- set JDEXPATH=D:\jdk\jdex
- set path=.;"%JDK%\bin";"%jdexpath%";%path%
- set CLASSPATH=.;"%JDK%\lib\classes.zip";"%JDK%\..\MyCode\Classes";"%JDK%\..\as400\jt400\lib\jt400.zip"
- :end